In this article I am going to reverse string without using build infunction. Here reverse string achieved without using ToCharArray. First of allcalculating the string length after loops the calculated string length andlogic implemented.
using System.Text;
static void Main(string[] args)
{
try
{
string Str, Revstr = "";
int Length; //lenght of givenstring
Console.Write("Enter the string to reverse: ");
Str = Console.ReadLine();
Length = Str.Length - 1;
while (Length >= 0) //loops the string length
{
Revstr = Revstr + Str[Length]; //performimg reverse string usingLength of string
Length--;
}
Console.WriteLine("Reverse String Is {0}", Revstr);
}
catch(Exception ex) {
Console.WriteLine(ex.ToString());
}
Console.ReadLine();
}
Output:
Enter the string toreverse:Infinetsoft
Reverse String is tfostenifnI.
Post your comments / questions
Recent Article
- How to create custom 404 error page in Django?
- Requested setting INSTALLED_APPS, but settings are not configured. You must either define..
- ValueError:All arrays must be of the same length - Python
- Check hostname requires server hostname - SOLVED
- How to restrict access to the page Access only for logged user in Django
- Migration admin.0001_initial is applied before its dependency admin.0001_initial on database default
- Add or change a related_name argument to the definition for 'auth.User.groups' or 'DriverUser.groups'. -Django ERROR
- Addition of two numbers in django python
Related Article